(line-move-finish): Inhibit field motion when computing `line-end'.
authorMiles Bader <miles@gnu.org>
Mon, 10 Jun 2002 08:04:48 +0000 (08:04 +0000)
committerMiles Bader <miles@gnu.org>
Mon, 10 Jun 2002 08:04:48 +0000 (08:04 +0000)
lisp/simple.el

index 6ae43f637703d4485507c1bd11ee180143c60e8b..9f01cef9f66865e5fe66121dc00a65d066acaba0 100644 (file)
@@ -2668,7 +2668,8 @@ Outline mode sets this."
            (line-end
             ;; Compute the end of the line
             ;; ignoring effectively intangible newlines.
-            (let ((inhibit-point-motion-hooks nil))
+            (let ((inhibit-point-motion-hooks nil)
+                  (inhibit-field-text-motion t))
               (save-excursion (end-of-line) (point)))))
 
        ;; Move to the desired column.